Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.ecm.permissions.directories

Resolution Order

252
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.permissions.directories">

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">
    <schema name="aceinfo" src="schemas/aceinfo.xsd" prefix="aceinfo" />

    <property schema="aceinfo" name="id" indexOrder="ascending" />
    <property schema="aceinfo" name="docId" indexOrder="ascending" />
  </extension>

  <extension target="org.nuxeo.ecm.directory.GenericDirectory" point="directories">

    <directory name="aceinfo" extends="template-directory">
      <schema>aceinfo</schema>
      <idField>id</idField>
      <types>
        <type>system</type>
      </types>
      <permissions>
        <permission name="Read">
          <group>__Nobody__</group>
        </permission>
      </permissions>
    </directory>

  </extension>

</component>